home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / utilities / shell / csh540.lha / HISTORY < prev    next >
Encoding:
Text File  |  1995-01-31  |  12.7 KB  |  298 lines

  1.  
  2.  
  3.                                   HISTORY
  4.                                  =========
  5.  
  6.  
  7. Changes from 5.39 to 5.40   (public release)
  8. -------------------------
  9.  - Fixed error message for builtin command "copy": if no special error
  10.     message was available, always the string "(no mem)" was output.
  11.  - New placeholders "-1" and "-2" for builtin command "window".
  12.  - Increased maximum value for window dimensions from 1023 to 32767
  13.     for builtin command "window".
  14.  - Environment variables LINES and COLUMNS override window bounds
  15.     from Amiga console.device.
  16.     (if env vars are set, no CSI sequence is sent)
  17.  - Builtin command "mem" now shows size of largest available memory block.
  18.  
  19.  
  20.  
  21. Changes from 5.38 to 5.39   (public release)
  22. -------------------------
  23.  - New builtin variable "_timeout" (in microseconds) sets maximum response
  24.     time for terminal to answer WINDOW STATUS REQUEST (for window bounds).
  25.     Defaults to 1 (for local usage), must be set to higher value for remote
  26.     connections.  Only used, if window pointer is not available.
  27.  - Removed command line length limitation (140 chars) for ARexx scripts that
  28.     ends with ".rexx" but are started without the trailing ".rexx".
  29.  - Removed command line length limitation (518 chars) for ARexx scripts and
  30.     external shells (#! in first line), this was a limitation in AmigaOS'
  31.     System() function.  DOS scripts still have this limitation, because you
  32.     cannot RunCommand() "execute".
  33.  - Not only "*" and "?" but also "[" and "]" recognized as AmigaDOS pattern.
  34.     (that means, to use "[" and "]" you must quote (") or escape (\) them!)
  35.  - ... and much more workarounds for serious bugs in DateToStr() and Locale
  36.  - Fixed bug: making an assign to an executable and calling the executable
  37.     by its assign crashed machine.
  38.  - Fixed bug: builtin command "cp" sometimes used already freed memory for
  39.     generating error messages (resulted in some strange error messages)
  40.  - New flag for for command abbreviation ($_abbrev):
  41.     8, search DOS path-list if command wasn't found in Cshell's internal
  42.     program hash list (see "rehash" command)
  43.  
  44.  
  45.  
  46. Changes from 5.37 to 5.38   (internal beta release)
  47. -------------------------
  48.  - CTRL-D now shows matching files if current word is not a directory.
  49.     (if directory then shows contents of directory -- as usual)
  50.     In its current implementation this may have unexpected side effects
  51.     if current word is already a pattern.
  52.  - Class definition for AmigaE in class.sh
  53.     [thanks to Joseph E. Van_Riper III]
  54.  - Now internal timer (eg, %e in the titlebar) not set to zero when a null
  55.     command is encountered.  (same for return code, %x in titlebar)
  56.  - The idea of always using the variable "_dirformat" for "dir" wasn't a
  57.     good idea.  So, "_dirformat" is only used if option -z is given (when
  58.     "_dirformat" is unset then use first argument as format string).
  59.  - New control-code for line-editing: "^V" (ctrl-v) quotes next char.
  60.  - New builtin variable "_kick" holds version number of Operating System.
  61.  - Builtin command "assign" now prints volume name if assign points to
  62.     an unmounted volume (eg, a removed floppy disk) and doesn't pop up
  63.     a requester "Please replace volume ..."
  64.  - It was a stupid idea to force redirecting of all Cshell-related
  65.     system requesters to CSH's screen, because requester windows inherit
  66.     the window title of their "initiator". They appear now again on your
  67.     default public screen.
  68.  - Fixed serious bug (crashed machine) with redirection and launching
  69.     programs into background. (files closed twice)
  70.     Known bug: it's still not possible to run pipes into background...
  71.  - When running programs into background (run, rback, &), internal commands
  72.     and aliases are recognized and executed with "csh -c". Aliases WON'T be
  73.     resolved on this level so they must be declared in .cshrc to run them
  74.     into background.
  75.  - Execution of Rexx-Scripts (without trailing ".rexx") and any other program
  76.     with "#! my_prog" or ";! my_prog" in first line of script now possible
  77.     also from DOS search path and not only $_path.
  78.  - New builtin variable "_mappath" (see manual), enables pathname-mapping for
  79.     commands if script starts with "#!" or ";!" in first line.  Converts Unix
  80.     pathes like "/usr/..." to "usr:...".
  81.  - New option "-w" for Cshell, don't use window pointer (useful for KingCON).
  82.  - New option "-V" for Cshell, send only VT100 compatible control sequences
  83.  - Internal variable "o_vt100" now used (if option -t or -V is set),
  84.     don't send control sequences that are not VT100 compatible (eg,
  85.     special Amiga control sequences).
  86.  
  87.  
  88.  
  89. Changes from 5.36 to 5.37   (public release)
  90. -------------------------
  91.  - Builtin command "mkdir" now strips off trailing slash (if any).
  92.  - Builtin command "chmod" now supports "a" for all bits (ugo),
  93.     and if no ownership-bit is specified "chmod" really modifies
  94.     only the user-bits (as stated in the doc) and not all bits.
  95.  - Builtin commands "chown/chgrp" now also run under AmigaOS 2.0+
  96.     (direct DOS packets), not only under AmigaOS 3.0+ (SetOwner).
  97.     [thanks to Carsten Heyl]
  98.  - No requester "please insert volume ..." when you press return
  99.     and your current directory is on an "unmounted" volume
  100.     (eg, a removed floppy disk).
  101.  - Builtin command "dir" now uses contents of variable "_dirformat"
  102.     (if set) automatically as default output format (option -z not
  103.     neccessary for _dirformat anymore). Option -z (followed by an
  104.     argument with format string) can now be used again for another
  105.     custom format for current call as in Cshell 5.19 and before.
  106.     [thanks to Laurent Faillie for his letter]
  107.  - Builtin command "protect" was broken in beta-version 5.36.
  108.  - Source code now "indent" clean.
  109.     (some warnings on first run, but no errors)
  110.  - New option "-c" for builtin command "qsort": be case-sensitive.
  111.  
  112.  
  113.  
  114. Changes from 5.35 to 5.36   (internal beta release)
  115. -------------------------
  116.  - Now output in "path -r" only if at least 1 memory block could not be
  117.     freed.
  118.  - Fixed layout bug in "rm -r <wildcard>" if one or more items could not
  119.     be removed.
  120.  - Fixed serious bug in "rehash", access to already freed memory under
  121.     certain circumstances.  (always think twice before using "char ***" ;-)
  122.  - Manual entry for builtin command "relabel".
  123.  - Error checking code for all NameFromLock() calls.
  124.  - Now 100% Commodore-compatible version string.
  125.  - Now @rnd( ) accepts optional seed parameter.
  126.  - Fixed bogus output for NULL pointers in pattern-matching-routine.
  127.  - Fixed bug in "rehash", recognition of executables was broken.
  128.  - Now multiple drive names are allowed for "diskchange".
  129.  - Now @age() returns null-string if file was not found (instead of 99999).
  130.     [thanks to Gary Duncan]
  131.  - New function @age_mins() returns age of file in minutes.
  132.     [thanks to Gary Duncan]
  133.  - Now requesters appear on same screen as CSH's window.
  134.  - Variable "_abbrev" now handled somewhat different: it enables/disables
  135.     the different modes of command-abbreviation.  See manual for details!
  136.  - Output of "dir -k" and "dir -i" (show classes) looks much nicer now.
  137.  - Added class "gzip" to csh:class.sh.
  138.  - Added support for MultiUser. %U in prompt/titlebar shows current user
  139.     of CSH. Out-comment "#define MULTIUSER_SUPPORT 1" in shell.h to compile
  140.     without MultiUser stuff.
  141.     [thanks to Magnus Lilja]
  142.  - New builtin commands "chown" and "chgrp".
  143.  - Builtin command "chmod" now supports User/Group/Other bits.
  144.  - New placeholders for custom output format (option "-z"),
  145.     "%F" shows group/other bits, %U shows user-id, %G shows group-id.
  146.  
  147.  
  148.  
  149. Changes from 5.34 to 5.35   (public release)
  150. -------------------------
  151.  - Now CSH executes "s:.logout" on exit.
  152.     New option "-L" (noLogout) disables sourcing of "s:.logout".
  153.  - Fixed option "-n" in builtin command "dir", never worked before.
  154.  - Some minor layout changes in builtin command "help".
  155.  - Builtin command "window -q" (query) shows public screen names.
  156.  - New/Changed options for builtin command "strings".
  157.     (not compatible with previous versions!)
  158.  - More sophisticated memory-cleanup for builtin command "path -r" (reset).
  159.  - New option "-M" for CSH, don't clear menus (especially for KingCON).
  160.  - Support for soft-links in builtin command "dir".
  161.     [thanks to Carsten Heyl]
  162.  
  163.  
  164.  
  165. Changes from 5.33 to 5.34   (internal beta release)
  166. -------------------------
  167.  
  168.  - New section SCROLLING in the manual (at the end). Read it !
  169.  - New variable "_prghash" holds filename where program hash list
  170.     is loaded from and saved to.
  171.  - Now CSH also finds programs in resident list if they start with "C:"
  172.     (even if there is no corresponding program in C: directory).
  173.     This is for compatibility reasons (Commodore Shell).
  174.  - In previous versions CSH aborted the commandline if one pattern
  175.     did not match. Now CSH only aborts if all patterns does not
  176.     match.
  177.  - Totally new meaning of variable "_nomatch".  It's now unset by
  178.     default and if you set it then CSH will _not_ abort if all
  179.     patterns does not match.
  180.  - Added option "-m" to CSH, sets "_nomatch" variable.
  181.     (for compatibility reasons)
  182.  - Fixed bug in date command (s/r options).
  183.     [Gary Duncan]
  184.  - New option -a for "copy" command, don't clear archive bit.
  185.     [Gary Duncan]
  186.  - Rewritten code for "window -q", no longer crashes system.
  187.  - New option "-w" for builtin command "window".
  188.     (ignore window width for option -q, so that very long window/screen
  189.      titles are printed completely)
  190.  - Input/output redirection with "<>", the file must be either
  191.     "NIL:" or an interactive file.
  192.  - New variable "_cquote" enables Commodore-style handling of
  193.     quotation marks (eg, for use with ReadArgs);
  194.     variable is unset by default (UNIX-style handling of quotes).
  195.  - Increased some (very small) buffers in "ls" code (could crash
  196.     machine), line limit is now around 1000 chars per line. Had
  197.     to increase internal stack size to 17500.
  198.  
  199.  
  200.  
  201. Changes from 5.32 to 5.33   (internal beta release)
  202. -------------------------
  203.  
  204.  - New builtin command "rehash", buffers programs in DOS search path
  205.     and offers program name completion (ESC-p, ESC-P). Two new "completion
  206.     functions" for keymaps:
  207.     36, CompPrg1     Insert first matching program (or cycle)
  208.     37, CompPrgAll   Shows all matching programs
  209.  - Fixed input-stream problem for DOS scripts.
  210.  - Kludge for running DOS scripts from devices with spaces in their name.
  211.  - Fixed Enforcer hit in "set" command (eg, "set a ="),
  212.     just curious: this Enforcer hit was misinterpreted by an user to be
  213.     a bug in "_every" variable and accidently I found another bug there
  214.     which caused CSH to ignore "_every" if the previous shell command was
  215.     aborted (^C)
  216.  - Fixed Enforcer hit: "unset _path"
  217.  - Builtin command "date" can now read battery-backed up clock directly
  218.     [thanks to Gary Duncan]
  219.  
  220.  
  221.  
  222. Changes from 5.31 to 5.32   (internal beta release)
  223. -------------------------
  224.  
  225.  - Removed "No match" output if "dir" was used on empty directories.
  226.     This was a feature, not a bug.  But misunderstood by most users.
  227.  - New "edit function" for keymaps: 29, insert last word of previous line
  228.     (e.g. "keymap 0 12=29" assigns that function to CTRL+L)
  229.  - Option "-q" of builtin command "rm/delete" didn't work in previous
  230.     versions.  Now aborts as documented.
  231.     This does _not_ affect non-matching wildcards, use "_nomatch" instead.
  232.  - Checking of requested stack size (builtin command "stack").
  233.  - Builtin command "mem" now calls AllocMem(0x7fffffff,0) ten times
  234.     to flush unneeded memory.  (similar to "avail flush")
  235.  - fixed possible rounding bug in "itok()", caused display of wrong size
  236.     for harddisk partitions around 1 GB etc.
  237.  
  238.  
  239.  
  240. Changes from 5.19 to 5.31   (The Essential)
  241. -------------------------
  242.  
  243.  - ARP free
  244.  - OS 2.0+ only
  245.  - slightly changed pattern matching (pattern.library, dos.library)
  246.  - better support for DOS' command search path and resident list
  247.  - supports "PROGDIR:"
  248.  - supports AmigaOS-scripts
  249.  - Unix-like automagic execution of ".login" and ".cshrc"
  250.  - more builtin commands support ^C (ctrl-c)
  251.  - more reliable support of WILDSTAR-Flag
  252.  - enhanced commands (new options, bug fixes, changed behaviour):
  253.     dir
  254.     path
  255.     info
  256.     rename
  257.     delete
  258.     assign
  259.     touch
  260.     ps
  261.     mkdir
  262.     addbuffers
  263.     cd
  264.     stack
  265.     help
  266.     strings
  267.     menu
  268.     resident
  269.     head
  270.     tail
  271.     set
  272.  - new commands
  273.     ln/makelink
  274.     chmod
  275.  - new (or modified) functions
  276.     @stricmp
  277.     @filedate
  278.     @filenote
  279.     @hextodec
  280.     @confirm
  281.     @ask
  282.  - new variables
  283.     _clipri
  284.     _dirformat
  285.     _nomatch
  286.  - new prompt variable(s)
  287.  - new "edit function" for keymaps
  288.  - detects if current directory was changed by other programs
  289.  - uses ASL file-requester
  290.  - arguments in scripts passed via $0, $1, $2 etc., number of
  291.     arguments in $#
  292.  - enhanced quoting mechanism for filename completion
  293.  - lots of internal changes
  294.  - lots of other bug fixes
  295.  - and lots of changes and new features I forgot to write down ;-)
  296.  
  297.  
  298.